home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / t_unix / j109lxa4.tar / devparam.h < prev    next >
C/C++ Source or Header  |  1994-06-04  |  787b  |  38 lines

  1. #ifndef    _DEVPARAM_H
  2. #define    _DEVPARAM_H
  3.  
  4. #ifndef    _GLOBAL_H
  5. #include "global.h"
  6. #endif
  7.  
  8. /* device parameter control */
  9. #define    PARAM_DATA    0
  10. #define    PARAM_TXDELAY    1
  11. #define    PARAM_PERSIST    2
  12. #define    PARAM_SLOTTIME    3
  13. #define    PARAM_TXTAIL    4
  14. #define    PARAM_FULLDUP    5
  15. #define    PARAM_HW    6
  16. #define    PARAM_MUTE    7
  17. #define    PARAM_DTR    8
  18. #define    PARAM_RTS    9
  19. #define    PARAM_SPEED    10
  20. #define    PARAM_ENDDELAY    11
  21. #define    PARAM_GROUP    12
  22. #define PARAM_IDLE    13
  23. #define    PARAM_MIN    14
  24. #define    PARAM_MAXKEY    15
  25. #define    PARAM_WAIT    16
  26. #define PARAM_DOWN    0x81
  27. #define PARAM_UP    0x82
  28. #define PARAM_BLIND    0x83    /* should be vertigo, can't tell down/up? */
  29. #define PARAM_RETURN2   0xfe
  30. #define PARAM_RETURN    0xff
  31.  
  32. /* In devparam.c: */
  33. int devparam __ARGS((char *s));
  34. char *parmname __ARGS((int n));
  35.  
  36. #endif    /* _DEVPARAM_H */
  37.  
  38.